【例子介绍】2023全新借贷APP系统源码 独立uni前端 java后端 全开源
【相关图片】
【源码结构】
.
├── README.txt
├── dk(服务器)
│ ├── pom.xml
│ └── src
│ └── main
│ ├── java
│ │ └── com
│ │ └── dk
│ │ ├── Application.java
│ │ ├── common
│ │ │ ├── CommonController.java
│ │ │ ├── constant
│ │ │ │ └── Constant.java
│ │ │ ├── exception
│ │ │ │ ├── MyException.java
│ │ │ │ ├── MyParamException.java
│ │ │ │ └── MyServiceException.java
│ │ │ ├── http
│ │ │ │ ├── DataResult.java
│ │ │ │ ├── PageRequest.java
│ │ │ │ ├── PageResult.java
│ │ │ │ ├── Request.java
│ │ │ │ └── Result.java
│ │ │ ├── redis
│ │ │ │ ├── FastJsonRedisSerializer.java
│ │ │ │ ├── GenericsUtil.java
│ │ │ │ ├── RedisKeyPrefix.java
│ │ │ │ └── RedisService.java
│ │ │ └── util
│ │ │ ├── DateUtil.java
│ │ │ ├── IDGenerator.java
│ │ │ ├── IpAddressUtil.java
│ │ │ ├── JsonUtil.java
│ │ │ ├── MD5.java
│ │ │ ├── NumberToCN.java
│ │ │ └── SmsUtil.java
│ │ ├── interceptor
│ │ │ ├── AuthorityHelper.java
│ │ │ ├── AuthorityInterceptor.java
│ │ │ ├── BaseController.java
│ │ │ ├── FastJsonConfiguration.java
│ │ │ ├── FilterConfig.java
│ │ │ ├── GlobalExceptionHandler.java
│ │ │ └── MyWebMvcConfigurer.java
│ │ └── modules
│ │ ├── config
│ │ │ ├── controller
│ │ │ │ ├── AboutConfigController.java
│ │ │ │ ├── ConfigAgreementController.java
│ │ │ │ ├── ConfigChannelController.java
│ │ │ │ ├── ConfigLoanController.java
│ │ │ │ ├── ConfigOrderWordsController.java
│ │ │ │ └── ConfigSpreadController.java
│ │ │ ├── mapper
│ │ │ │ ├── ConfigAboutMapper.java
│ │ │ │ ├── ConfigAgreementMapper.java
│ │ │ │ ├── ConfigChannelMapper.java
│ │ │ │ ├── ConfigLoanMapper.java
│ │ │ │ ├── ConfigOrderWordsMapper.java
│ │ │ │ └── ConfigSpreadMapper.java
│ │ │ ├── po
│ │ │ │ ├── ConfigAbout.java
│ │ │ │ ├── ConfigAgreement.java
│ │ │ │ ├── ConfigChannel.java
│ │ │ │ ├── ConfigLoan.java
│ │ │ │ ├── ConfigOrderWords.java
│ │ │ │ └── ConfigSpread.java
│ │ │ └── service
│ │ │ ├── ConfigAboutService.java
│ │ │ ├── ConfigAgreementService.java
│ │ │ ├── ConfigChannelService.java
│ │ │ ├── ConfigLoanService.java
│ │ │ └── ConfigOrderWordsService.java
│ │ ├── member
│ │ │ ├── controller
│ │ │ │ ├── AdminMemberController.java
│ │ │ │ └── WebMemberController.java
│ │ │ ├── mapper
│ │ │ │ ├── MemberInfoDetailMapper.java
│ │ │ │ └── MemberInfoMapper.java
│ │ │ ├── po
│ │ │ │ ├── MemberInfo.java
│ │ │ │ └── MemberInfoDetail.java
│ │ │ └── service
│ │ │ ├── MemberInfoDetailService.java
│ │ │ └── MemberService.java
│ │ ├── order
│ │ │ ├── controller
│ │ │ │ ├── AdminOrderInfoController.java
│ │ │ │ └── WebOrderInfoController.java
│ │ │ ├── mapper
│ │ │ │ ├── OrderContractMapper.java
│ │ │ │ └── OrderInfoMapper.java
│ │ │ ├── po
│ │ │ │ ├── OrderContract.java
│ │ │ │ ├── OrderContractWithBLOBs.java
│ │ │ │ └── OrderInfo.java
│ │ │ └── service
│ │ │ └── OrderInfoService.java
│ │ └── user
│ │ ├── controller
│ │ │ └── AdminUserController.java
│ │ ├── mapper
│ │ │ └── AdminUserMapper.java
│ │ ├── po
│ │ │ └── AdminUser.java
│ │ └── service
│ │ └── AdminUserService.java
│ └── resources
│ ├── application.properties
│ ├── com
│ │ └── dk
│ │ └── modules
│ │ ├── config
│ │ │ └── mapper
│ │ │ ├── ConfigAboutMapper.xml
│ │ │ ├── ConfigAgreementMapper.xml
│ │ │ ├── ConfigChannelMapper.xml
│ │ │ ├── ConfigLoanMapper.xml
│ │ │ ├── ConfigOrderWordsMapper.xml
│ │ │ └── ConfigSpreadMapper.xml
│ │ ├── member
│ │ │ └── mapper
│ │ │ ├── MemberInfoDetailMapper.xml
│ │ │ └── MemberInfoMapper.xml
│ │ ├── order
│ │ │ └── mapper
│ │ │ ├── OrderContractMapper.xml
│ │ │ └── OrderInfoMapper.xml
│ │ └── user
│ │ └── mapper
│ │ └── AdminUserMapper.xml
│ └── generatorConfig.xml
├── nginx(ng配置示例).conf
├── p2p(uniapp)
│ ├── App.vue
│ ├── common
│ │ ├── api.js
│ │ ├── css
│ │ │ └── style.scss
│ │ ├── http.js
│ │ └── navigate.js
│ ├── components
│ │ ├── chat.vue
│ │ ├── header.vue
│ │ └── no-data.vue
│ ├── main.js
│ ├── manifest.json
│ ├── pages
│ │ ├── borrow
│ │ │ └── borrow.vue
│ │ ├── fwxy
│ │ │ └── fwxy.vue
│ │ ├── index
│ │ │ └── index.vue
│ │ ├── jkxy
│ │ │ └── jkxy.vue
│ │ ├── loanlist
│ │ │ └── loanlist.vue
│ │ ├── login
│ │ │ └── login.vue
│ │ ├── myBankCard
│ │ │ └── myBankCard.vue
│ │ ├── profile
│ │ │ └── profile.vue
│ │ ├── register
│ │ │ └── register.vue
│ │ ├── repaylist
│ │ │ └── repaylist.vue
│ │ ├── signature
│ │ │ └── signature.vue
│ │ ├── sqxy
│ │ │ └── sqxy.vue
│ │ ├── userbank
│ │ │ └── userbank.vue
│ │ ├── userdata
│ │ │ └── userdata.vue
│ │ ├── userdatum
│ │ │ └── userdatum.vue
│ │ ├── useridentity
│ │ │ └── useridentity.vue
│ │ └── wallet
│ │ └── wallet.vue
│ ├── pages.json
│ ├── static
│ │ ├── ai.gif
│ │ ├── allow.png
│ │ ├── android.css
│ │ ├── bg1.jpg
│ │ ├── bg2.png
│ │ ├── bg3.png
│ │ ├── borrow.png
│ │ ├── default.png
│ │ ├── email.png
│ │ ├── fse.png
│ │ ├── icons
│ │ │ ├── 1024x1024.png
│ │ │ ├── 120x120.png
│ │ │ ├── 144x144.png
│ │ │ ├── 152x152.png
│ │ │ ├── 167x167.png
│ │ │ ├── 180x180.png
│ │ │ ├── 192x192.png
│ │ │ ├── 20x20.png
│ │ │ ├── 29x29.png
│ │ │ ├── 40x40.png
│ │ │ ├── 58x58.png
│ │ │ ├── 60x60.png
│ │ │ ├── 72x72.png
│ │ │ ├── 76x76.png
│ │ │ ├── 80x80.png
│ │ │ ├── 87x87.png
│ │ │ └── 96x96.png
│ │ ├── in1.png
│ │ ├── in2.png
│ │ ├── in3.png
│ │ ├── in4.png
│ │ ├── kf.png
│ │ ├── l1.png
│ │ ├── l2.png
│ │ ├── l3.png
│ │ ├── l4.png
│ │ ├── l5.png
│ │ ├── l7.png
│ │ ├── loan1.png
│ │ ├── loan2.png
│ │ ├── logo.png
│ │ └── user
│ │ ├── 1.png
│ │ ├── 2.png
│ │ └── 3.png
│ ├── store
│ │ └── index.js
│ ├── uni.scss
│ ├── unpackage
│ │ ├── debug
│ │ │ └── iOS_debug.ipa
│ │ ├── dist
│ │ │ ├── build
│ │ │ │ └── app-plus
│ │ │ │ ├── __uniappchooselocation.js
│ │ │ │ ├── __uniappes6.js
│ │ │ │ ├── __uniappopenlocation.js
│ │ │ │ ├── __uniapppicker.js
│ │ │ │ ├── __uniappquill.js
│ │ │ │ ├── __uniappquillimageresize.js
│ │ │ │ ├── __uniappscan.js
│ │ │ │ ├── __uniappsuccess.png
│ │ │ │ ├── __uniappview.html
│ │ │ │ ├── app-config-service.js
│ │ │ │ ├── app-config.js
│ │ │ │ ├── app-service.js
│ │ │ │ ├── app-view.js
│ │ │ │ ├── manifest.json
│ │ │ │ ├── static
│ │ │ │ │ ├── ai.gif
│ │ │ │ │ ├── allow.png
│ │ │ │ │ ├── android.css
│ │ │ │ │ ├── bg1.jpg
│ │ │ │ │ ├── bg2.png
│ │ │ │ │ ├── bg3.png
│ │ │ │ │ ├── borrow.png
│ │ │ │ │ ├── default.png
│ │ │ │ │ ├── email.png
│ │ │ │ │ ├── fse.png
│ │ │ │ │ ├── icons
│ │ │ │ │ │ ├── 1024x1024.png
│ │ │ │ │ │ ├── 120x120.png
│ │ │ │ │ │ ├── 144x144.png
│ │ │ │ │ │ ├── 152x152.png
│ │ │ │ │ │ ├── 167x167.png
│ │ │ │ │ │ ├── 180x180.png
│ │ │ │ │ │ ├── 192x192.png
│ │ │ │ │ │ ├── 20x20.png
│ │ │ │ │ │ ├── 29x29.png
│ │ │ │ │ │ ├── 40x40.png
│ │ │ │ │ │ ├── 58x58.png
│ │ │ │ │ │ ├── 60x60.png
│ │ │ │ │ │ ├── 72x72.png
│ │ │ │ │ │ ├── 76x76.png
│ │ │ │ │ │ ├── 80x80.png
│ │ │ │ │ │ ├── 87x87.png
│ │ │ │ │ │ └── 96x96.png
│ │ │ │ │ ├── in1.png
│ │ │ │ │ ├── in2.png
│ │ │ │ │ ├── in3.png
│ │ │ │ │ ├── in4.png
│ │ │ │ │ ├── kf.png
│ │ │ │ │ ├── l1.png
│ │ │ │ │ ├── l2.png
│ │ │ │ │ ├── l3.png
│ │ │ │ │ ├── l4.png
│ │ │ │ │ ├── l5.png
│ │ │ │ │ ├── l7.png
│ │ │ │ │ ├── loan1.png
│ │ │ │ │ ├── loan2.png
│ │ │ │ │ ├── logo.png
│ │ │ │ │ └── user
│ │ │ │ │ ├── 1.png
│ │ │ │ │ ├── 2.png
│ │ │ │ │ └── 3.png
│ │ │ │ ├── view.css
│ │ │ │ └── view.umd.min.js
│ │ │ └── dev
│ │ │ └── mp-weixin
│ │ │ ├── app.js
│ │ │ ├── app.json
│ │ │ ├── app.wxss
│ │ │ ├── common
│ │ │ │ ├── main.js
│ │ │ │ ├── main.wxss
│ │ │ │ ├── runtime.js
│ │ │ │ └── vendor.js
│ │ │ ├── components
│ │ │ │ ├── chat.js
│ │ │ │ ├── chat.json
│ │ │ │ ├── chat.wxml
│ │ │ │ ├── chat.wxss
│ │ │ │ ├── header.js
│ │ │ │ ├── header.json
│ │ │ │ ├── header.wxml
│ │ │ │ ├── header.wxss
│ │ │ │ ├── no-data.js
│ │ │ │ ├── no-data.json
│ │ │ │ ├── no-data.wxml
│ │ │ │ └── no-data.wxss
│ │ │ ├── pages
│ │ │ │ ├── borrow
│ │ │ │ │ ├── borrow.js
│ │ │ │ │ ├── borrow.json
│ │ │ │ │ ├── borrow.wxml
│ │ │ │ │ └── borrow.wxss
│ │ │ │ ├── fwxy
│ │ │ │ │ ├── fwxy.js
│ │ │ │ │ ├── fwxy.json
│ │ │ │ │ ├── fwxy.wxml
│ │ │ │ │ └── fwxy.wxss
│ │ │ │ ├── index
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── index.json
│ │ │ │ │ ├── index.wxml
│ │ │ │ │ └── index.wxss
│ │ │ │ ├── jkxy
│ │ │ │ │ ├── jkxy.js
│ │ │ │ │ ├── jkxy.json
│ │ │ │ │ ├── jkxy.wxml
│ │ │ │ │ └── jkxy.wxss
│ │ │ │ ├── loanlist
│ │ │ │ │ ├── loanlist.js
│ │ │ │ │ ├── loanlist.json
│ │ │ │ │ ├── loanlist.wxml
│ │ │ │ │ └── loanlist.wxss
│ │ │ │ ├── login
│ │ │ │ │ ├── login.js
│ │ │ │ │ ├── login.json
│ │ │ │ │ ├── login.wxml
│ │ │ │ │ └── login.wxss
│ │ │ │ ├── myBankCard
│ │ │ │ │ ├── myBankCard.js
│ │ │ │ │ ├── myBankCard.json
│ │ │ │ │ ├── myBankCard.wxml
│ │ │ │ │ └── myBankCard.wxss
│ │ │ │ ├── profile
│ │ │ │ │ ├── profile.js
│ │ │ │ │ ├── profile.json
│ │ │ │ │ ├── profile.wxml
│ │ │ │ │ └── profile.wxss
│ │ │ │ ├── register
│ │ │ │ │ ├── register.js
│ │ │ │ │ ├── register.json
│ │ │ │ │ ├── register.wxml
│ │ │ │ │ └── register.wxss
│ │ │ │ ├── repaylist
│ │ │ │ │ ├── repaylist.js
│ │ │ │ │ ├── repaylist.json
│ │ │ │ │ ├── repaylist.wxml
│ │ │ │ │ └── repaylist.wxss
│ │ │ │ ├── signature
│ │ │ │ │ ├── signature.js
│ │ │ │ │ ├── signature.json
│ │ │ │ │ ├── signature.wxml
│ │ │ │ │ └── signature.wxss
│ │ │ │ ├── sqxy
│ │ │ │ │ ├── sqxy.js
│ │ │ │ │ ├── sqxy.json
│ │ │ │ │ └── sqxy.wxml
│ │ │ │ ├── userbank
│ │ │ │ │ ├── userbank.js
│ │ │ │ │ ├── userbank.json
│ │ │ │ │ ├── userbank.wxml
│ │ │ │ │ └── userbank.wxss
│ │ │ │ ├── userdata
│ │ │ │ │ ├── userdata.js
│ │ │ │ │ ├── userdata.json
│ │ │ │ │ ├── userdata.wxml
│ │ │ │ │ └── userdata.wxss
│ │ │ │ ├── userdatum
│ │ │ │ │ ├── userdatum.js
│ │ │ │ │ ├── userdatum.json
│ │ │ │ │ ├── userdatum.wxml
│ │ │ │ │ └── userdatum.wxss
│ │ │ │ ├── useridentity
│ │ │ │ │ ├── useridentity.js
│ │ │ │ │ ├── useridentity.json
│ │ │ │ │ ├── useridentity.wxml
│ │ │ │ │ └── useridentity.wxss
│ │ │ │ └── wallet
│ │ │ │ ├── wallet.js
│ │ │ │ ├── wallet.json
│ │ │ │ ├── wallet.wxml
│ │ │ │ └── wallet.wxss
│ │ │ ├── project.config.json
│ │ │ ├── static
│ │ │ │ ├── ai.gif
│ │ │ │ ├── allow.png
│ │ │ │ ├── android.css
│ │ │ │ ├── bg1.jpg
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── bg2.png
│ │ │ │ ├── bg3.jpg
│ │ │ │ ├── bg3.png
│ │ │ │ ├── borrow.png
│ │ │ │ ├── default.png
│ │ │ │ ├── email.png
│ │ │ │ ├── fse.png
│ │ │ │ ├── icons
│ │ │ │ │ ├── 1024x1024.png
│ │ │ │ │ ├── 120x120.png
│ │ │ │ │ ├── 144x144.png
│ │ │ │ │ ├── 152x152.png
│ │ │ │ │ ├── 167x167.png
│ │ │ │ │ ├── 180x180.png
│ │ │ │ │ ├── 192x192.png
│ │ │ │ │ ├── 20x20.png
│ │ │ │ │ ├── 29x29.png
│ │ │ │ │ ├── 40x40.png
│ │ │ │ │ ├── 58x58.png
│ │ │ │ │ ├── 60x60.png
│ │ │ │ │ ├── 72x72.png
│ │ │ │ │ ├── 76x76.png
│ │ │ │ │ ├── 80x80.png
│ │ │ │ │ ├── 87x87.png
│ │ │ │ │ └── 96x96.png
│ │ │ │ ├── in1.png
│ │ │ │ ├── in2.png
│ │ │ │ ├── in3.png
│ │ │ │ ├── in4.png
│ │ │ │ ├── kf.png
│ │ │ │ ├── l1.png
│ │ │ │ ├── l2.png
│ │ │ │ ├── l3.png
│ │ │ │ ├── l4.png
│ │ │ │ ├── l5.png
│ │ │ │ ├── l7.png
│ │ │ │ ├── loan1.png
│ │ │ │ ├── loan2.png
│ │ │ │ ├── logo.png
│ │ │ │ └── user
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ └── 3.png
│ │ │ └── uview-ui
│ │ │ └── components
│ │ │ ├── u-button
│ │ │ │ ├── u-button.js
│ │ │ │ ├── u-button.json
│ │ │ │ ├── u-button.wxml
│ │ │ │ └── u-button.wxss
│ │ │ ├── u-card
│ │ │ │ ├── u-card.js
│ │ │ │ ├── u-card.json
│ │ │ │ ├── u-card.wxml
│ │ │ │ └── u-card.wxss
│ │ │ ├── u-cell-group
│ │ │ │ ├── u-cell-group.js
│ │ │ │ ├── u-cell-group.json
│ │ │ │ ├── u-cell-group.wxml
│ │ │ │ └── u-cell-group.wxss
│ │ │ ├── u-cell-item
│ │ │ │ ├── u-cell-item.js
│ │ │ │ ├── u-cell-item.json
│ │ │ │ ├── u-cell-item.wxml
│ │ │ │ └── u-cell-item.wxss
│ │ │ ├── u-field
│ │ │ │ ├── u-field.js
│ │ │ │ ├── u-field.json
│ │ │ │ ├── u-field.wxml
│ │ │ │ └── u-field.wxss
│ │ │ ├── u-form
│ │ │ │ ├── u-form.js
│ │ │ │ ├── u-form.json
│ │ │ │ ├── u-form.wxml
│ │ │ │ └── u-form.wxss
│ │ │ ├── u-form-item
│ │ │ │ ├── u-form-item.js
│ │ │ │ ├── u-form-item.json
│ │ │ │ ├── u-form-item.wxml
│ │ │ │ └── u-form-item.wxss
│ │ │ ├── u-icon
│ │ │ │ ├── u-icon.js
│ │ │ │ ├── u-icon.json
│ │ │ │ ├── u-icon.wxml
│ │ │ │ └── u-icon.wxss
│ │ │ ├── u-image
│ │ │ │ ├── u-image.js
│ │ │ │ ├── u-image.json
│ │ │ │ ├── u-image.wxml
│ │ │ │ └── u-image.wxss
│ │ │ ├── u-input
│ │ │ │ ├── u-input.js
│ │ │ │ ├── u-input.json
│ │ │ │ ├── u-input.wxml
│ │ │ │ └── u-input.wxss
│ │ │ ├── u-line
│ │ │ │ ├── u-line.js
│ │ │ │ ├── u-line.json
│ │ │ │ ├── u-line.wxml
│ │ │ │ └── u-line.wxss
│ │ │ ├── u-line-progress
│ │ │ │ ├── u-line-progress.js
│ │ │ │ ├── u-line-progress.json
│ │ │ │ ├── u-line-progress.wxml
│ │ │ │ └── u-line-progress.wxss
│ │ │ ├── u-loading
│ │ │ │ ├── u-loading.js
│ │ │ │ ├── u-loading.json
│ │ │ │ ├── u-loading.wxml
│ │ │ │ └── u-loading.wxss
│ │ │ ├── u-mask
│ │ │ │ ├── u-mask.js
│ │ │ │ ├── u-mask.json
│ │ │ │ ├── u-mask.wxml
│ │ │ │ └── u-mask.wxss
│ │ │ ├── u-modal
│ │ │ │ ├── u-modal.js
│ │ │ │ ├── u-modal.json
│ │ │ │ ├── u-modal.wxml
│ │ │ │ └── u-modal.wxss
│ │ │ ├── u-navbar
│ │ │ │ ├── u-navbar.js
│ │ │ │ ├── u-navbar.json
│ │ │ │ ├── u-navbar.wxml
│ │ │ │ └── u-navbar.wxss
│ │ │ ├── u-picker
│ │ │ │ ├── u-picker.js
│ │ │ │ ├── u-picker.json
│ │ │ │ ├── u-picker.wxml
│ │ │ │ └── u-picker.wxss
│ │ │ ├── u-popup
│ │ │ │ ├── u-popup.js
│ │ │ │ ├── u-popup.json
│ │ │ │ ├── u-popup.wxml
│ │ │ │ └── u-popup.wxss
│ │ │ ├── u-select
│ │ │ │ ├── u-select.js
│ │ │ │ ├── u-select.json
│ │ │ │ ├── u-select.wxml
│ │ │ │ └── u-select.wxss
│ │ │ ├── u-tag
│ │ │ │ ├── u-tag.js
│ │ │ │ ├── u-tag.json
│ │ │ │ ├── u-tag.wxml
│ │ │ │ └── u-tag.wxss
│ │ │ ├── u-toast
│ │ │ │ ├── u-toast.js
│ │ │ │ ├── u-toast.json
│ │ │ │ ├── u-toast.wxml
│ │ │ │ └── u-toast.wxss
│ │ │ ├── u-upload
│ │ │ │ ├── u-upload.js
│ │ │ │ ├── u-upload.json
│ │ │ │ ├── u-upload.wxml
│ │ │ │ └── u-upload.wxss
│ │ │ └── u-verification-code
│ │ │ ├── u-verification-code.js
│ │ │ ├── u-verification-code.json
│ │ │ ├── u-verification-code.wxml
│ │ │ └── u-verification-code.wxss
│ │ └── resources
│ │ └── __UNI__8FBD4D5
│ │ └── www
│ │ ├── __uniappchooselocation.js
│ │ ├── __uniappes6.js
│ │ ├── __uniappopenlocation.js
│ │ ├── __uniapppicker.js
│ │ ├── __uniappquill.js
│ │ ├── __uniappquillimageresize.js
│ │ ├── __uniappscan.js
│ │ ├── __uniappsuccess.png
│ │ ├── __uniappview.html
│ │ ├── app-config-service.js
│ │ ├── app-config.js
│ │ ├── app-service.js
│ │ ├── app-view.js
│ │ ├── manifest.json
│ │ ├── static
│ │ │ ├── ai.gif
│ │ │ ├── allow.png
│ │ │ ├── android.css
│ │ │ ├── bg1.jpg
│ │ │ ├── bg2.png
│ │ │ ├── bg3.png
│ │ │ ├── borrow.png
│ │ │ ├── default.png
│ │ │ ├── email.png
│ │ │ ├── fse.png
│ │ │ ├── in1.png
│ │ │ ├── in2.png
│ │ │ ├── in3.png
│ │ │ ├── in4.png
│ │ │ ├── kf.png
│ │ │ ├── l1.png
│ │ │ ├── l2.png
│ │ │ ├── l3.png
│ │ │ ├── l4.png
│ │ │ ├── l5.png
│ │ │ ├── l7.png
│ │ │ ├── loan1.png
│ │ │ ├── loan2.png
│ │ │ ├── logo.png
│ │ │ └── user
│ │ │ ├── 1.png
│ │ │ ├── 2.png
│ │ │ └── 3.png
│ │ ├── view.css
│ │ └── view.umd.min.js
│ └── uview-ui
│ ├── LICENSE
│ ├── README.md
│ ├── components
│ │ ├── u-action-sheet
│ │ │ └── u-action-sheet.vue
│ │ ├── u-alert-tips
│ │ │ └── u-alert-tips.vue
│ │ ├── u-avatar
│ │ │ └── u-avatar.vue
│ │ ├── u-avatar-cropper
│ │ │ ├── u-avatar-cropper.vue
│ │ │ └── weCropper.js
│ │ ├── u-back-top
│ │ │ └── u-back-top.vue
│ │ ├── u-badge
│ │ │ └── u-badge.vue
│ │ ├── u-button
│ │ │ └── u-button.vue
│ │ ├── u-calendar
│ │ │ └── u-calendar.vue
│ │ ├── u-car-keyboard
│ │ │ └── u-car-keyboard.vue
│ │ ├── u-card
│ │ │ └── u-card.vue
│ │ ├── u-cell-group
│ │ │ └── u-cell-group.vue
│ │ ├── u-cell-item
│ │ │ └── u-cell-item.vue
│ │ ├── u-checkbox
│ │ │ └── u-checkbox.vue
│ │ ├── u-checkbox-group
│ │ │ └── u-checkbox-group.vue
│ │ ├── u-circle-progress
│ │ │ └── u-circle-progress.vue
│ │ ├── u-col
│ │ │ └── u-col.vue
│ │ ├── u-collapse
│ │ │ └── u-collapse.vue
│ │ ├── u-collapse-item
│ │ │ └── u-collapse-item.vue
│ │ ├── u-column-notice
│ │ │ └── u-column-notice.vue
│ │ ├── u-count-down
│ │ │ └── u-count-down.vue
│ │ ├── u-count-to
│ │ │ └── u-count-to.vue
│ │ ├── u-divider
│ │ │ └── u-divider.vue
│ │ ├── u-dropdown
│ │ │ └── u-dropdown.vue
│ │ ├── u-dropdown-item
│ │ │ └── u-dropdown-item.vue
│ │ ├── u-empty
│ │ │ └── u-empty.vue
│ │ ├── u-field
│ │ │ └── u-field.vue
│ │ ├── u-form
│ │ │ └── u-form.vue
│ │ ├── u-form-item
│ │ │ └── u-form-item.vue
│ │ ├── u-full-screen
│ │ │ └── u-full-screen.vue
│ │ ├── u-gap
│ │ │ └── u-gap.vue
│ │ ├── u-grid
│ │ │ └── u-grid.vue
│ │ ├── u-grid-item
│ │ │ └── u-grid-item.vue
│ │ ├── u-icon
│ │ │ └── u-icon.vue
│ │ ├── u-image
│ │ │ └── u-image.vue
│ │ ├── u-index-anchor
│ │ │ └── u-index-anchor.vue
│ │ ├── u-index-list
│ │ │ └── u-index-list.vue
│ │ ├── u-input
│ │ │ └── u-input.vue
│ │ ├── u-keyboard
│ │ │ └── u-keyboard.vue
│ │ ├── u-lazy-load
│ │ │ └── u-lazy-load.vue
│ │ ├── u-line
│ │ │ └── u-line.vue
│ │ ├── u-line-progress
│ │ │ └── u-line-progress.vue
│ │ ├── u-link
│ │ │ └── u-link.vue
│ │ ├── u-loading
│ │ │ └── u-loading.vue
│ │ ├── u-loading-page
│ │ │ └── u-loading-page.vue
│ │ ├── u-loadmore
│ │ │ └── u-loadmore.vue
│ │ ├── u-mask
│ │ │ └── u-mask.vue
│ │ ├── u-message-input
│ │ │ └── u-message-input.vue
│ │ ├── u-modal
│ │ │ └── u-modal.vue
│ │ ├── u-navbar
│ │ │ └── u-navbar.vue
│ │ ├── u-no-network
│ │ │ └── u-no-network.vue
│ │ ├── u-notice-bar
│ │ │ └── u-notice-bar.vue
│ │ ├── u-number-box
│ │ │ └── u-number-box.vue
│ │ ├── u-number-keyboard
│ │ │ └── u-number-keyboard.vue
│ │ ├── u-parse
│ │ │ ├── libs
│ │ │ │ ├── CssHandler.js
│ │ │ │ ├── MpHtmlParser.js
│ │ │ │ ├── config.js
│ │ │ │ ├── handler.wxs
│ │ │ │ └── trees.vue
│ │ │ └── u-parse.vue
│ │ ├── u-picker
│ │ │ └── u-picker.vue
│ │ ├── u-popup
│ │ │ └── u-popup.vue
│ │ ├── u-radio
│ │ │ └── u-radio.vue
│ │ ├── u-radio-group
│ │ │ └── u-radio-group.vue
│ │ ├── u-rate
│ │ │ └── u-rate.vue
│ │ ├── u-read-more
│ │ │ └── u-read-more.vue
│ │ ├── u-row
│ │ │ └── u-row.vue
│ │ ├── u-row-notice
│ │ │ └── u-row-notice.vue
│ │ ├── u-search
│ │ │ └── u-search.vue
│ │ ├── u-section
│ │ │ └── u-section.vue
│ │ ├── u-select
│ │ │ └── u-select.vue
│ │ ├── u-skeleton
│ │ │ └── u-skeleton.vue
│ │ ├── u-slider
│ │ │ └── u-slider.vue
│ │ ├── u-steps
│ │ │ └── u-steps.vue
│ │ ├── u-sticky
│ │ │ └── u-sticky.vue
│ │ ├── u-subsection
│ │ │ └── u-subsection.vue
│ │ ├── u-swipe-action
│ │ │ └── u-swipe-action.vue
│ │ ├── u-swiper
│ │ │ └── u-swiper.vue
│ │ ├── u-switch
│ │ │ └── u-switch.vue
│ │ ├── u-tabbar
│ │ │ └── u-tabbar.vue
│ │ ├── u-table
│ │ │ └── u-table.vue
│ │ ├── u-tabs
│ │ │ └── u-tabs.vue
│ │ ├── u-tabs-swiper
│ │ │ └── u-tabs-swiper.vue
│ │ ├── u-tag
│ │ │ └── u-tag.vue
│ │ ├── u-td
│ │ │ └── u-td.vue
│ │ ├── u-th
│ │ │ └── u-th.vue
│ │ ├── u-time-line
│ │ │ └── u-time-line.vue
│ │ ├── u-time-line-item
│ │ │ └── u-time-line-item.vue
│ │ ├── u-toast
│ │ │ └── u-toast.vue
│ │ ├── u-top-tips
│ │ │ └── u-top-tips.vue
│ │ ├── u-tr
│ │ │ └── u-tr.vue
│ │ ├── u-upload
│ │ │ └── u-upload.vue
│ │ ├── u-verification-code
│ │ │ └── u-verification-code.vue
│ │ └── u-waterfall
│ │ └── u-waterfall.vue
│ ├── iconfont.css
│ ├── index.js
│ ├── index.scss
│ ├── libs
│ │ ├── config
│ │ │ ├── config.js
│ │ │ └── zIndex.js
│ │ ├── css
│ │ │ ├── color.scss
│ │ │ ├── common.scss
│ │ │ ├── style.components.scss
│ │ │ ├── style.h5.scss
│ │ │ ├── style.mp.scss
│ │ │ ├── style.nvue.scss
│ │ │ └── style.vue.scss
│ │ ├── function
│ │ │ ├── $parent.js
│ │ │ ├── addUnit.js
│ │ │ ├── bem.js
│ │ │ ├── color.js
│ │ │ ├── colorGradient.js
│ │ │ ├── debounce.js
│ │ │ ├── deepClone.js
│ │ │ ├── deepMerge.js
│ │ │ ├── getParent.js
│ │ │ ├── guid.js
│ │ │ ├── md5.js
│ │ │ ├── queryParams.js
│ │ │ ├── random.js
│ │ │ ├── randomArray.js
│ │ │ ├── route.js
│ │ │ ├── sys.js
│ │ │ ├── test.js
│ │ │ ├── throttle.js
│ │ │ ├── timeFormat.js
│ │ │ ├── timeFrom.js
│ │ │ ├── toast.js
│ │ │ ├── trim.js
│ │ │ └── type2icon.js
│ │ ├── mixin
│ │ │ ├── mixin.js
│ │ │ └── mpShare.js
│ │ ├── request
│ │ │ └── index.js
│ │ ├── store
│ │ │ └── index.js
│ │ └── util
│ │ ├── area.js
│ │ ├── async-validator.js
│ │ ├── city.js
│ │ ├── emitter.js
│ │ └── province.js
│ ├── package.json
│ └── theme.scss
├── site(后台网页)
│ ├── files
│ │ └── 20201023
│ │ └── b4e21a62b94141f3abbea76782553ae7.png
│ ├── index.html
│ ├── json
│ │ ├── console
│ │ │ ├── prograss.js
│ │ │ ├── top-card.js
│ │ │ └── top-search.js
│ │ ├── content
│ │ │ ├── comment.js
│ │ │ ├── list.js
│ │ │ └── tags.js
│ │ ├── forum
│ │ │ ├── list.js
│ │ │ └── replys.js
│ │ ├── layer
│ │ │ └── photos.js
│ │ ├── layim
│ │ │ ├── getList.js
│ │ │ └── getMembers.js
│ │ ├── mall
│ │ │ └── order.js
│ │ ├── menu.js
│ │ ├── message
│ │ │ ├── all.js
│ │ │ ├── detail.js
│ │ │ ├── direct.js
│ │ │ ├── new.js
│ │ │ └── notice.js
│ │ ├── table
│ │ │ ├── demo.js
│ │ │ ├── demo2.js
│ │ │ ├── demo3.js
│ │ │ ├── user.js
│ │ │ └── user30.js
│ │ ├── upload
│ │ │ └── demo.js
│ │ ├── user
│ │ │ ├── forget.js
│ │ │ ├── login.js
│ │ │ ├── logout.js
│ │ │ ├── reg.js
│ │ │ ├── resetpass.js
│ │ │ ├── session.js
│ │ │ └── sms.js
│ │ ├── useradmin
│ │ │ ├── mangadmin.js
│ │ │ ├── role.js
│ │ │ └── webuser.js
│ │ ├── workorder
│ │ │ └── demo.js
│ │ └── 说明.txt
│ ├── layui
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ ├── layui.mobile.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── laydate
│ │ │ │ └── default
│ │ │ │ └── laydate.css
│ │ │ ├── layer
│ │ │ │ └── default
│ │ │ │ ├── icon-ext.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── layer.css
│ │ │ │ ├── loading-0.gif
│ │ │ │ ├── loading-1.gif
│ │ │ │ └── loading-2.gif
│ │ │ └── layim
│ │ │ ├── html
│ │ │ │ ├── chatlog.html
│ │ │ │ ├── find.html
│ │ │ │ ├── getmsg.json
│ │ │ │ └── msgbox.html
│ │ │ ├── layim.css
│ │ │ ├── mobile
│ │ │ │ └── layim.css
│ │ │ ├── skin
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ ├── 5.jpg
│ │ │ │ └── logo.jpg
│ │ │ └── voice
│ │ │ └── default.mp3
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ ├── iconfont.woff
│ │ │ └── iconfont.woff2
│ │ ├── images
│ │ │ └── face
│ │ │ ├── 0.gif
│ │ │ ├── 1.gif
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 2.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 3.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 4.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 5.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 56.gif
│ │ │ ├── 57.gif
│ │ │ ├── 58.gif
│ │ │ ├── 59.gif
│ │ │ ├── 6.gif
│ │ │ ├── 60.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 68.gif
│ │ │ ├── 69.gif
│ │ │ ├── 7.gif
│ │ │ ├── 70.gif
│ │ │ ├── 71.gif
│ │ │ ├── 8.gif
│ │ │ └── 9.gif
│ │ ├── lay
│ │ │ └── modules
│ │ │ ├── carousel.js
│ │ │ ├── code.js
│ │ │ ├── colorpicker.js
│ │ │ ├── element.js
│ │ │ ├── flow.js
│ │ │ ├── form.js
│ │ │ ├── jquery.js
│ │ │ ├── laydate.js
│ │ │ ├── layedit.js
│ │ │ ├── layer.js
│ │ │ ├── layim.js
│ │ │ ├── laypage.js
│ │ │ ├── laytpl.js
│ │ │ ├── mobile.js
│ │ │ ├── rate.js
│ │ │ ├── slider.js
│ │ │ ├── table.js
│ │ │ ├── transfer.js
│ │ │ ├── tree.js
│ │ │ ├── upload.js
│ │ │ └── util.js
│ │ ├── layui.all.js
│ │ └── layui.js
│ ├── login
│ │ └── register.html
│ └── src
│ ├── controller
│ │ ├── common.js
│ │ ├── console.js
│ │ ├── contlist.js
│ │ ├── forum.js
│ │ ├── sample.js
│ │ ├── senior.js
│ │ ├── set.js
│ │ ├── user.js
│ │ ├── useradmin.js
│ │ └── workorder.js
│ ├── index.js
│ ├── lib
│ │ ├── admin.js
│ │ ├── extend
│ │ │ ├── echarts.js
│ │ │ ├── echartsTheme.js
│ │ │ └── goods.js
│ │ ├── layui_exts
│ │ │ ├── index.html
│ │ │ └── tinymce
│ │ │ ├── tinymce
│ │ │ │ ├── jquery.tinymce.min.js
│ │ │ │ ├── langs
│ │ │ │ │ ├── readme.md
│ │ │ │ │ └── zh_CN.js
│ │ │ │ ├── license.txt
│ │ │ │ ├── plugins
│ │ │ │ │ ├── advlist
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── anchor
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── autolink
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── autoresize
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── autosave
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── bbcode
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── charmap
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── code
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── codesample
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── colorpicker
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── contextmenu
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── directionality
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── emoticons
│ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ ├── emojis.js
│ │ │ │ │ │ │ └── emojis.min.js
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── fullpage
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── fullscreen
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── help
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── hr
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── imagetools
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── importcss
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── indent2em
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── insertdatetime
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── legacyoutput
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── link
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── lists
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── media
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── nonbreaking
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── noneditable
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── pagebreak
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── paste
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── preview
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── print
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── quickbars
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── save
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── searchreplace
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── spellchecker
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── tabfocus
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── table
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── template
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── textcolor
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── textpattern
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── toc
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── visualblocks
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ ├── visualchars
│ │ │ │ │ │ ├── plugin.js
│ │ │ │ │ │ └── plugin.min.js
│ │ │ │ │ └── wordcount
│ │ │ │ │ ├── plugin.js
│ │ │ │ │ └── plugin.min.js
│ │ │ │ ├── readme.md
│ │ │ │ ├── skins
│ │ │ │ │ ├── content
│ │ │ │ │ │ ├── dark
│ │ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ │ ├── content.min.css
│ │ │ │ │ │ │ └── content.min.css.map
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ │ ├── content.min.css
│ │ │ │ │ │ │ └── content.min.css.map
│ │ │ │ │ │ ├── document
│ │ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ │ ├── content.min.css
│ │ │ │ │ │ │ └── content.min.css.map
│ │ │ │ │ │ └── writer
│ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ ├── content.min.css
│ │ │ │ │ │ └── content.min.css.map
│ │ │ │ │ └── ui
│ │ │ │ │ ├── oxide
│ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ ├── content.inline.css
│ │ │ │ │ │ ├── content.inline.min.css
│ │ │ │ │ │ ├── content.inline.min.css.map
│ │ │ │ │ │ ├── content.min.css
│ │ │ │ │ │ ├── content.min.css.map
│ │ │ │ │ │ ├── content.mobile.css
│ │ │ │ │ │ ├── content.mobile.min.css
│ │ │ │ │ │ ├── content.mobile.min.css.map
│ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ └── tinymce-mobile.woff
│ │ │ │ │ │ ├── skin.css
│ │ │ │ │ │ ├── skin.min.css
│ │ │ │ │ │ ├── skin.min.css.map
│ │ │ │ │ │ ├── skin.mobile.css
│ │ │ │ │ │ ├── skin.mobile.min.css
│ │ │ │ │ │ └── skin.mobile.min.css.map
│ │ │ │ │ └── oxide-dark
│ │ │ │ │ ├── content.css
│ │ │ │ │ ├── content.inline.css
│ │ │ │ │ ├── content.inline.min.css
│ │ │ │ │ ├── content.inline.min.css.map
│ │ │ │ │ ├── content.min.css
│ │ │ │ │ ├── content.min.css.map
│ │ │ │ │ ├── content.mobile.css
│ │ │ │ │ ├── content.mobile.min.css
│ │ │ │ │ ├── content.mobile.min.css.map
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ └── tinymce-mobile.woff
│ │ │ │ │ ├── skin.css
│ │ │ │ │ ├── skin.min.css
│ │ │ │ │ ├── skin.min.css.map
│ │ │ │ │ ├── skin.mobile.css
│ │ │ │ │ ├── skin.mobile.min.css
│ │ │ │ │ └── skin.mobile.min.css.map
│ │ │ │ ├── themes
│ │ │ │ │ ├── mobile
│ │ │ │ │ │ ├── theme.js
│ │ │ │ │ │ └── theme.min.js
│ │ │ │ │ └── silver
│ │ │ │ │ ├── theme.js
│ │ │ │ │ └── theme.min.js
│ │ │ │ ├── tinymce.js
│ │ │ │ └── tinymce.min.js
│ │ │ └── tinymce.js
│ │ └── view.js
│ ├── style
│ │ ├── admin.css
│ │ ├── login.css
│ │ ├── res
│ │ │ ├── add.jpg
│ │ │ ├── bg-none.jpg
│ │ │ ├── layui-logo.jpg
│ │ │ ├── logo-black.png
│ │ │ ├── logo.png
│ │ │ ├── template
│ │ │ │ ├── character.jpg
│ │ │ │ ├── huge.jpg
│ │ │ │ └── portrait.png
│ │ │ └── timg.jpg
│ │ └── template.css
│ └── views
│ ├── app
│ │ ├── content
│ │ │ ├── comment.html
│ │ │ ├── contform.html
│ │ │ ├── list.html
│ │ │ ├── listform.html
│ │ │ ├── tags.html
│ │ │ └── tagsform.html
│ │ ├── forum
│ │ │ ├── list.html
│ │ │ ├── listform.html
│ │ │ ├── replys.html
│ │ │ └── replysform.html
│ │ ├── message
│ │ │ ├── detail.html
│ │ │ └── index.html
│ │ ├── workorder
│ │ │ ├── list.html
│ │ │ └── listform.html
│ │ └── 说明.txt
│ ├── component
│ │ ├── anim
│ │ │ └── index.html
│ │ ├── auxiliar
│ │ │ └── index.html
│ │ ├── badge
│ │ │ └── index.html
│ │ ├── button
│ │ │ └── index.html
│ │ ├── carousel
│ │ │ └── index.html
│ │ ├── code
│ │ │ └── index.html
│ │ ├── colorpicker
│ │ │ └── index.html
│ │ ├── flow
│ │ │ └── index.html
│ │ ├── form
│ │ │ ├── element.html
│ │ │ └── group.html
│ │ ├── grid
│ │ │ ├── all.html
│ │ │ ├── list.html
│ │ │ ├── mobile-pc.html
│ │ │ ├── mobile.html
│ │ │ ├── speed-dial.html
│ │ │ └── stack.html
│ │ ├── laydate
│ │ │ ├── demo1.html
│ │ │ ├── demo2.html
│ │ │ ├── special-demo.html
│ │ │ └── theme.html
│ │ ├── layer
│ │ │ ├── list.html
│ │ │ ├── special-demo.html
│ │ │ └── theme.html
│ │ ├── laypage
│ │ │ ├── demo1.html
│ │ │ └── demo2.html
│ │ ├── laytpl
│ │ │ └── index.html
│ │ ├── nav
│ │ │ └── index.html
│ │ ├── panel
│ │ │ └── index.html
│ │ ├── progress
│ │ │ └── index.html
│ │ ├── rate
│ │ │ └── index.html
│ │ ├── slider
│ │ │ └── index.html
│ │ ├── table
│ │ │ ├── auto.html
│ │ │ ├── cellEdit.html
│ │ │ ├── cellEvent.html
│ │ │ ├── checkbox.html
│ │ │ ├── data.html
│ │ │ ├── fixed.html
│ │ │ ├── form.html
│ │ │ ├── height.html
│ │ │ ├── initSort.html
│ │ │ ├── onrow.html
│ │ │ ├── operate.html
│ │ │ ├── page.html
│ │ │ ├── parseData.html
│ │ │ ├── radio.html
│ │ │ ├── reload.html
│ │ │ ├── resetPage.html
│ │ │ ├── simple.html
│ │ │ ├── static.html
│ │ │ ├── style.html
│ │ │ ├── thead.html
│ │ │ ├── toolbar.html
│ │ │ ├── tostatic.html
│ │ │ └── totalRow.html
│ │ ├── tabs
│ │ │ └── index.html
│ │ ├── timeline
│ │ │ └── index.html
│ │ ├── transfer
│ │ │ └── index.html
│ │ ├── tree
│ │ │ └── index.html
│ │ ├── upload
│ │ │ ├── demo1.html
│ │ │ └── demo2.html
│ │ ├── util
│ │ │ └── index.html
│ │ └── 说明.txt
│ ├── home
│ │ ├── homepage1.html
│ │ └── homepage2.html
│ ├── iframe
│ │ ├── layer
│ │ │ └── iframe.html
│ │ ├── link
│ │ │ ├── baidu.html
│ │ │ ├── layui.html
│ │ │ └── layuiAdmin.html
│ │ └── 说明.txt
│ ├── index.html
│ ├── layout.html
│ ├── member
│ │ ├── memberAdd.html
│ │ ├── memberDetail.html
│ │ ├── memberList.html
│ │ └── memberRecharge.html
│ ├── order
│ │ ├── orderAmount.html
│ │ ├── orderBank.html
│ │ ├── orderList.html
│ │ ├── orderStatus.html
│ │ └── sendMessage.html
│ ├── senior
│ │ ├── echarts
│ │ │ ├── bar.html
│ │ │ ├── line.html
│ │ │ └── map.html
│ │ ├── im
│ │ │ ├── index.html
│ │ │ └── kefu.html
│ │ └── 说明.txt
│ ├── set
│ │ ├── system
│ │ │ ├── email.html
│ │ │ └── website.html
│ │ ├── user
│ │ │ ├── info.html
│ │ │ └── password.html
│ │ └── 说明.txt
│ ├── sysset
│ │ ├── area
│ │ │ └── area.html
│ │ ├── daikuanshezhi.html
│ │ ├── orderstatus
│ │ │ ├── osAdd.html
│ │ │ └── osList.html
│ │ ├── tgqd
│ │ │ ├── tgqdAdd.html
│ │ │ └── tgqdList.html
│ │ └── xieyi
│ │ ├── fuwuxieyi.html
│ │ ├── jiekuanxieyi.html
│ │ └── shouquanxieyi.html
│ ├── system
│ │ ├── about.html
│ │ ├── get.html
│ │ ├── more.html
│ │ ├── theme.html
│ │ └── 说明.txt
│ ├── temp.html
│ ├── template
│ │ ├── addresslist.html
│ │ ├── caller.html
│ │ ├── goodslist.html
│ │ ├── msgboard.html
│ │ ├── personalpage.html
│ │ ├── search.html
│ │ ├── tips
│ │ │ ├── error.html
│ │ │ └── test.html
│ │ ├── user
│ │ │ ├── forget.html
│ │ │ ├── login.html
│ │ │ └── reg.html
│ │ └── 说明.txt
│ └── user
│ ├── administrators
│ │ ├── adminform.html
│ │ ├── list.html
│ │ ├── role.html
│ │ └── roleform.html
│ ├── forget.html
│ ├── login.html
│ ├── reg.html
│ ├── user
│ │ ├── list.html
│ │ ├── userAdd.html
│ │ ├── userUpdate.html
│ │ └── userform.html
│ └── 说明.txt
├── web(分发网页)
│ ├── certification
│ │ ├── download.html
│ │ ├── iosDownload.html
│ │ ├── privacy.html
│ │ └── protocal.html
│ ├── common
│ │ ├── img
│ │ │ ├── 404.png
│ │ │ ├── Dow_1.jpg
│ │ │ ├── Dow_2.jpg
│ │ │ ├── Dow_3.jpg
│ │ │ ├── Dow_top2.jpg
│ │ │ ├── android.png
│ │ │ ├── bg.png
│ │ │ ├── cover.jpg
│ │ │ ├── ios_bg.png
│ │ │ └── logo.png
│ │ ├── js
│ │ │ ├── axjx.js
│ │ │ └── index.js
│ │ └── tool
│ │ ├── jquery.js
│ │ └── md5.js
│ ├── config
│ │ └── index.js
│ └── index.html
├── 5t6t网_2023全新借贷APP系统源码 独立uni前端 java后端 全开源.zip
└── 数据库脚本
├── 数据结构.sql
└── 初始化数据.sql
405 directories, 1140 files
评论